from small one page howto to huge articles all in one place
 

search text in:




Other .linuxhowtos.org sites: www.linuxhowtos.org
toolsntoys.linuxhowtos.org



Last additions:
How to make X listen on port 6000

How to make X listen on port 6000

words:

34

views:

75853

userrating:

average rating: 1.2 (8 votes) (1=very good 6=terrible)


May, 25th 2007:
April, 26th 2007:
Apr, 10th. 2007:
Druckversion . pdf icon
You are here: Misc

Gentoo udev Guide


1. What is udev?


The /dev Directory


When Linux-users talk about the hardware on their system in the vicinity of people who believe Linux is some sort of virus or brand of coffee, the use of "slash dev slash foo" will return a strange look for sure. But for the fortunate user (and that includes you) using /dev/hda1 is just a fast way of explaining that we are talking about the primary master IDE, first partition. Or aren't we?
We all know what a device file is. Some even know why device files have special numbers when we take a closer look at them when we issue ls -l in /dev. But what we always take for granted is that the primary master IDE disk is referred to as /dev/hda. You might not see it this way, but this is a flaw by design.
Think about hotpluggable devices like USB, IEEE1394, hot-swappable PCI, ... What is the first device? And for how long? What will the other devices be named when the first one disappears? How will that affect ongoing transactions? Wouldn't it be fun that a printing job is suddenly moved from your supernew laserprinter to your almost-dead matrix printer because your mom decided to pull the plug of the laserprinter which happened to be the first printer?


Enter udev. The goals of the udev project are both interesting and needed:
- Runs in userspace
- Dynamically creates/removes device files
- Provides consistent naming
- Provides a user-space API
To provide these features, udev is developed in three separate projects: namedev, libsysfs and, of course, udev.

namedev


Namedev allows you to define the device naming separately from the udev program. This allows for flexible naming policies and naming schemes developed by separate entities. This device naming subsystem provides a standard interface that udev can use.
Currently only a single naming scheme is provided by namedev; the one provided by LANANA, used by the majority of Linux systems currently and therefore very suitable for the majority of Linux users.
Namedev uses a 5-step procedure to find out the name of a given device. If the device name is found in one of the given steps, that name is used. The steps are:
- label or serial number
- bus device number
- bus topology
- statically given name
- kernel provided name

The label or serial number step checks if the device has a unique identifier. For instance USB devices have a unique USB serial number; SCSI devices have a unique UUID. If namedev finds a match between this unique number and a given configuration file, the name provided in the configuration file is used.
The bus device number step checks the device bus number. For non-hot-swappable environments this procedure is sufficient to identify a hardware device. For instance PCI bus numbers rarely change in the lifetime of a system. Again, if namedev finds a match between this position and a given configuration file, the name provided in that configuration file is used.
Likewise the bus topology is a rather static way of defining devices as long as the user doesn't switch devices. When the position of the device matches a given setting provided by the user, the accompanying name is used.
The fourth step, statically given name, is a simple string replacement. When the kernel name (the default name) matches a given replacement string, the substitute name will be used.
The final step (kernel provided name) is a catch-all: this one takes the default name provided by the kernel. In the majority of cases this is sufficient as it matches the device naming used on current Linux systems.

libsysfs


udev interacts with the kernel through the sysfs pseudo filesystem. The libsysfs project provides a common API to access the information given by the sysfs filesystem in a generic way. This allows for querying all kinds of hardware without having to make assumptions on the kind of hardware.

udev


Every time the kernel notices an update in the device structure, it calls the /sbin/hotplug program. Hotplug runs the applications linked in the /etc/hotplug.d/default directory where you will also find a symlink to the udev application. Hotplug directs the information given by the kernel to the udev application which performs the necessary actions on the /dev structure (creating or deleting device files).

2. Using udev on Gentoo


Requirements


udev is meant to be used in combination with a 2.6 kernel (like development-sources or gentoo-dev-sources). If you're using such a kernel then you just have to make sure that you have a recent sys-apps/baselayout version. That's all you need.
Code Listing 2.1: Installing udev
# emerge udev

udev will install hotplug-base as one of it's dependencies. You do not need to install hotplug unless you want your modules automatically loaded when you plug devices in. hotplug also handles the automated bringup of network devices and firmware downloading.
Code Listing 2.2: Installing optional hotplug scripts
# emerge hotplug

If you want modules loaded for devices that have been plugged in before you boot, use the coldplug package:
Code Listing 2.3: Installing the coldplug package
# emerge coldplug

Kernelwise, if you're using the default set by genkernel then you're all set. Otherwise be sure to activate the following options:
Code Listing 2.4: Required kernel options
General setup --->   
[*] Support for hot-pluggable devices

File systems --->
Pseudo filesystems --->
[*] /proc file system support
[*] Virtual memory file system support (former shm fs)

You can leave the /dev file system support (OBSOLETE) active if you wish but you have to make sure that "Automatically mount at boot" is disabled:
Code Listing 2.5: Don't automatically mount devfsd
File systems --->   
Pseudo Filesystems --->
[*] /dev file system support (OBSOLETE)
[ ] Automatically mount at boot

Configuration


If you want to use the udev-tweaks Gentoo added to make your life comfortable, then read no more. Gentoo will use udev but keep a static /dev so that you will never have any missing device nodes. The Gentoo init scripts won't run the devfsd daemon and will deactivate devfs when you boot up.

But if you are a die-hard and want to run a udev-only, no-tweaked system as is intended by the udev development (including the difficulties of missing device nodes because udev doesn't support them yet), by all means, read on :)

We'll deactivate the rules that save the device file nodes: edit the RC_DEVICE_TARBALL variable in /etc/conf.d/rc and set it to no:
Code Listing 2.6: /etc/conf.d/rc
RC_DEVICE_TARBALL="no"

If you have included devfs support in your kernel, you can deactivate it in the bootloader configuration: add gentoo=nodevfs as a kernel parameter. If you want to use devfs and deactivate udev, add gentoo=noudev as kernel parameter.

3. Known Issues


Missing device node files at boot


If you can't boot successfully because you get an error about /dev/null not found, or because the initial console is missing, the problem is that you lack some device files that must be available before /dev is mounted and handled by udev. This is common on Gentoo machines installed from old media.

If you run sys-apps/baselayout-1.8.12 or later, this problem is alleviated since the boot process should still manage to complete. However, to get rid of those annoying warnings, you should create the missing device nodes as described below.

To see which devices nodes are present before the /dev filesystem is mounted, run the following commands:
Code Listing 3.1: Listing device nodes available at boot
# mkdir test   
# mount --bind / test
# cd test/dev
# ls

The devices needed for a successful boot are /dev/null and /dev/console. If they didn't show up in the previous test, you have to create them manually. Issue the following commands in the test/dev/ directory:
Code Listing 3.2: Creating necessary device node files
# mknod -m 660 console c 5 1   
# mknod -m 660 null c 1 3

When you're finished, don't forget to unmount the test/ directory:
Code Listing 3.3: Unmounting the test/ directory
# cd ../..   
# umount test
# rmdir test

udev and nvidia


If you use the proprietary driver from nVidia and the X server fails to start on a udev-only system, then make sure you have:

the nvidia module listed in /etc/modules.autoload.d/kernel-2.6
a version of nvidia-kernel equal to or greater than media-video/nvidia-kernel-1.0.5336-r2
a version of baselayout equal to or greater than sys-apps/baselayout-1.8.12

LVM2 Names Disappear


When you use udev and LVM2 together, you might notice that your created volume groups and logical volumes have disappeared. Well, they haven't, but they are unfortunately named /dev/dm-# with # being 0, 1, ...

To fix this, edit /etc/udev/rules.d/50-udev.rules and uncomment the following line:
Code Listing 3.4: Uncomment this line from /etc/udev/rules.d/50-udev.rules
KERNEL="dm-[0-9]*",     PROGRAM="/sbin/devmap_name %M %m", NAME="%k", SYMLINK="%c"

No Consistent Naming between DevFS and udev


Even though our intention is to have a consistent naming scheme between both dynamical device management solutions, sometimes naming differences do occur. One reported clash is with a HP Smart Array 5i RAID controller (more precisely the cciss kernel module). With udev, the devices are named /dev/cciss/cXdYpZ with X, Y and Z regular numbers. With devfs, the devices are /dev/hostX/targetY/partZ or symlinked from /dev/cciss/cXdY.

If this is the case, don't forget to update your /etc/fstab and bootloader configuration files accordingly.

Other issues


If device nodes are not created when a module is loaded from /etc/modules.autoload.d/kernel-2.6 but they appear when you load the module manually with modprobe then you should try upgrading to sys-apps/baselayout-1.8.12 or later.

Support for the framebuffer devices (/dev/fb/*) comes with the kernel starting from version 2.6.6-rc2.

For kernels older than 2.6.4 you have to explicitly include support for the /dev/pts filesystem.
Code Listing 3.5: Enabling the /dev/pts filesystem
File systems --->   
Pseudo filesystems --->
[*] /dev/pts file system for Unix98 PTYs

4. Resources & Acknowledgements


The udev talk on the Linux Symposium (Ottawa, Ontario Canada - 2003) given by Greg Kroah-Hartman (IBM Corporation) provided a solid understanding on the udev application.

Decibel's UDEV Primer is an in-depth document about udev and Gentoo.

Writing udev rules by fellow Gentoo developer Daniel Drake is an excellent document to learn how to customize your udev installation.
rate this article:
current rating: average rating: 1.0 (7 votes) (1=very good 6=terrible)
Your rating:
Very good (1) Good (2) ok (3) average (4) bad (5) terrible (6)

back



Support us on Content Nation

New Packages

- as rdf newsfeed
- as rss newsfeed
- as Atom newsfeed
2025-06-01
aiounittest - 1.5.0-r1
Ebuild name:

dev-python/aiounittest-1.5.0-r1

Description

Test asyncio code more easily

Added to portage

2025-06-01

bindfs - 1.18.0
Ebuild name:

sys-fs/bindfs-1.18.0

Description

FUSE filesystem for bind mounting with altered permissions

Added to portage

2025-06-01

cmd2 - 2.6.0
Ebuild name:

dev-python/cmd2-2.6.0

Description

Extra features for standard library's cmd module

Added to portage

2025-06-01

colorized-logs - 2.7
Ebuild name:

sys-apps/colorized-logs-2.7

Description

Tools for logs with ANSI color

Added to portage

2025-06-01

curtsies - 0.4.2-r1
Ebuild name:

dev-python/curtsies-0.4.2-r1

Description

Curses-like terminal wrapper, with colored strings

Added to portage

2025-06-01

debian-archive-keyring - 2025.1
Ebuild name:

app-crypt/debian-archive-keyring-2025.1

Description

GnuPG archive keys of the Debian archive

Added to portage

2025-06-01

dill - 0.4.0
Ebuild name:

dev-python/dill-0.4.0

Description

Serialize all of Python (almost)

Added to portage

2025-06-01

eselect-zig - 2
Ebuild name:

app-eselect/eselect-zig-2

Description

Manages Zig versions

Added to portage

2025-06-01

gcc - 13.3.1_p20250530
Ebuild name:

sys-devel/gcc-13.3.1_p20250530

Description

The GNU Compiler Collection

Added to portage

2025-06-01

gcc - 14.3.1_p20250530
Ebuild name:

sys-devel/gcc-14.3.1_p20250530

Description

The GNU Compiler Collection

Added to portage

2025-06-01

gnome-mahjongg - 47.2
Ebuild name:

games-board/gnome-mahjongg-47.2

Description

Disassemble a pile of tiles by removing matching pairs

Added to portage

2025-06-01

gnome-software - 47.5
Ebuild name:

gnome-extra/gnome-software-47.5

Description

Gnome install & update software

Added to portage

2025-06-01

gnome-sudoku - 47.3
Ebuild name:

games-puzzle/gnome-sudoku-47.3

Description

Test your logic skills in this number grid puzzle

Added to portage

2025-06-01

gnome-system-monitor - 47.1
Ebuild name:

gnome-extra/gnome-system-monitor-47.1

Description

The Gnome System Monitor

Added to portage

2025-06-01

gnome-user-docs - 47.6
Ebuild name:

gnome-extra/gnome-user-docs-47.6

Description

GNOME end user documentation

Added to portage

2025-06-01

jsonschema-path - 0.3.4-r1
Ebuild name:

dev-python/jsonschema-path-0.3.4-r1

Description

JSONSchema Spec with object-oriented paths

Added to portage

2025-06-01

optipng - 7.9.1
Ebuild name:

media-gfx/optipng-7.9.1

Description

Recompress PNG files to a smaller size without loss of information

Added to portage

2025-06-01

overrides - 7.7.0-r1
Ebuild name:

dev-python/overrides-7.7.0-r1

Description

A decorator to automatically detect mismatch when overriding a method

Added to portage

2025-06-01

parso - 0.8.4-r1
Ebuild name:

dev-python/parso-0.8.4-r1

Description

A python parser that supports error recovery and round-trip parsing

Added to portage

2025-06-01

po-mode - 0.22
Ebuild name:

app-emacs/po-mode-0.22

Description

Major mode for GNU gettext PO files

Added to portage

2025-06-01

poke - 3.0
Ebuild name:

app-emacs/poke-3.0

Description

Emacs meets GNU poke

Added to portage

2025-06-01

ptyxis - 47.13
Ebuild name:

x11-terms/ptyxis-47.13

Description

A terminal for a container-oriented desktop

Added to portage

2025-06-01

pyxdg - 0.28-r2
Ebuild name:

dev-python/pyxdg-0.28-r2

Description

A Python module to deal with freedesktop.org specifications

Added to portage

2025-06-01

snakeoil - 0.10.11
Ebuild name:

dev-python/snakeoil-0.10.11

Description

misc common functionality and useful optimizations

Added to portage

2025-06-01

vifm - 0.14.2
Ebuild name:

app-misc/vifm-0.14.2

Description

Console file manager with vi(m)-like keybindings

Added to portage

2025-06-01

zig - 0.14.1
Ebuild name:

dev-lang/zig-0.14.1

Description

A robust, optimal, and maintainable programming language

Added to portage

2025-06-01

zig-bin - 0.14.1
Ebuild name:

dev-lang/zig-bin-0.14.1

Description

A robust, optimal, and maintainable programming language

Added to portage

2025-06-01

2025-05-31
apsw - 3.50.0.0
Ebuild name:

dev-python/apsw-3.50.0.0

Description

APSW - Another Python SQLite Wrapper

Added to portage

2025-05-31

awscli - 1.40.26
Ebuild name:

app-admin/awscli-1.40.26

Description

Universal Command Line Environment for AWS

Added to portage

2025-05-31

base64 - 0.3.0
Ebuild name:

dev-ruby/base64-0.3.0

Description

Support for encoding and decoding binary data using a Base64 representation.

Added to portage

2025-05-31

bash - 5.3_rc1_p20250530
Ebuild name:

app-shells/bash-5.3_rc1_p20250530

Description

The standard GNU Bourne again shell

Added to portage

2025-05-31

bcc - 0.35.0
Ebuild name:

dev-util/bcc-0.35.0

Description

Tools for BPF-based Linux IO analysis, networking, monitoring, and more

Added to portage

2025-05-31

benchmark - 0.4.1
Ebuild name:

dev-ruby/benchmark-0.4.1

Description

A performance benchmarking library

Added to portage

2025-05-31

bigdecimal - 3.2.1
Ebuild name:

dev-ruby/bigdecimal-3.2.1

Description

Arbitrary-precision decimal floating-point number library for Ruby

Added to portage

2025-05-31

boto3 - 1.38.27
Ebuild name:

dev-python/boto3-1.38.27

Description

The AWS SDK for Python

Added to portage

2025-05-31

botocore - 1.38.27
Ebuild name:

dev-python/botocore-1.38.27

Description

Low-level, data-driven core of boto 3

Added to portage

2025-05-31

caja - 1.28.0-r2
Ebuild name:

mate-base/caja-1.28.0-r2

Description

Caja file manager for the MATE desktop

Added to portage

2025-05-31

caja-actions - 1.28.0-r1
Ebuild name:

mate-extra/caja-actions-1.28.0-r1

Description

Caja Actions

Added to portage

2025-05-31

caldav - 1.6.0
Ebuild name:

dev-python/caldav-1.6.0

Description

CalDAV (RFC4791) client library for Python

Added to portage

2025-05-31

cinnamon - 6.2.9-r1
Ebuild name:

gnome-extra/cinnamon-6.2.9-r1

Description

A fork of GNOME Shell with layout similar to GNOME 2

Added to portage

2025-05-31

cinnamon - 6.4.8-r1
Ebuild name:

gnome-extra/cinnamon-6.4.8-r1

Description

A fork of GNOME Shell with layout similar to GNOME 2

Added to portage

2025-05-31

dia - 0.97.3-r4
Ebuild name:

app-office/dia-0.97.3-r4

Description

Diagram/flowchart creation program

Added to portage

2025-05-31

epiphany - 46.4-r1
Ebuild name:

www-client/epiphany-46.4-r1

Description

GNOME webbrowser based on Webkit

Added to portage

2025-05-31

epiphany - 47.2-r1
Ebuild name:

www-client/epiphany-47.2-r1

Description

GNOME webbrowser based on Webkit

Added to portage

2025-05-31

epiphany - 47.7-r1
Ebuild name:

www-client/epiphany-47.7-r1

Description

GNOME webbrowser based on Webkit

Added to portage

2025-05-31

evince - 46.3.1-r1
Ebuild name:

app-text/evince-46.3.1-r1

Description

Simple document viewer for GNOME

Added to portage

2025-05-31

evince - 48.0-r1
Ebuild name:

app-text/evince-48.0-r1

Description

Simple document viewer for GNOME

Added to portage

2025-05-31

evolution - 3.52.4-r3
Ebuild name:

mail-client/evolution-3.52.4-r3

Description

Integrated mail, addressbook and calendaring functionality

Added to portage

2025-05-31

evolution - 3.54.3-r1
Ebuild name:

mail-client/evolution-3.54.3-r1

Description

Integrated mail, addressbook and calendaring functionality

Added to portage

2025-05-31

evolution-data-server - 3.52.4-r3
Ebuild name:

gnome-extra/evolution-data-server-3.52.4-r3

Description

Evolution groupware backend

Added to portage

2025-05-31

evolution-data-server - 3.54.3-r1
Ebuild name:

gnome-extra/evolution-data-server-3.54.3-r1

Description

Evolution groupware backend

Added to portage

2025-05-31

evolution-ews - 3.52.4-r1
Ebuild name:

gnome-extra/evolution-ews-3.52.4-r1

Description

Evolution module for connecting to Microsoft Exchange Web Servi

Added to portage

2025-05-31

evolution-ews - 3.54.3.0-r1
Ebuild name:

gnome-extra/evolution-ews-3.54.3.0-r1

Description

Evolution module for connecting to Microsoft Exchange Web Ser

Added to portage

2025-05-31

fantomas - 7.0.2
Ebuild name:

dev-dotnet/fantomas-7.0.2

Description

FSharp source code formatter

Added to portage

2025-05-31

gentoo-elections - 0_p20240831
Ebuild name:

app-misc/gentoo-elections-0_p20240831

Description

Gentoo election control data and scripts

Added to portage

2025-05-31

glade - 3.40.0-r2
Ebuild name:

dev-util/glade-3.40.0-r2

Description

A user interface designer for GTK+ and GNOME

Added to portage

2025-05-31

gnome-applets - 3.46.0-r1
Ebuild name:

gnome-base/gnome-applets-3.46.0-r1

Description

Applets for the GNOME Flashback Panel

Added to portage

2025-05-31

gnome-applets - 3.50.0-r1
Ebuild name:

gnome-base/gnome-applets-3.50.0-r1

Description

Applets for the GNOME Flashback Panel

Added to portage

2025-05-31

gnome-applets - 3.52.0-r1
Ebuild name:

gnome-base/gnome-applets-3.52.0-r1

Description

Applets for the GNOME Flashback Panel

Added to portage

2025-05-31

gnome-applets - 3.54.0-r1
Ebuild name:

gnome-base/gnome-applets-3.54.0-r1

Description

Applets for the GNOME Flashback Panel

Added to portage

2025-05-31

gnome-boxes - 46.1-r1
Ebuild name:

gnome-extra/gnome-boxes-46.1-r1

Description

Simple GNOME application to access remote or virtual systems

Added to portage

2025-05-31

gnome-boxes - 47.0-r1
Ebuild name:

gnome-extra/gnome-boxes-47.0-r1

Description

Simple GNOME application to access remote or virtual systems

Added to portage

2025-05-31

gnome-builder - 46.3-r1
Ebuild name:

dev-util/gnome-builder-46.3-r1

Description

An IDE for writing GNOME-based software

Added to portage

2025-05-31

gnome-builder - 47.2-r1
Ebuild name:

dev-util/gnome-builder-47.2-r1

Description

An IDE for writing GNOME-based software

Added to portage

2025-05-31

gnome-calculator - 46.1-r1
Ebuild name:

gnome-extra/gnome-calculator-46.1-r1

Description

A calculator application for GNOME

Added to portage

2025-05-31

gnome-calculator - 47.1-r1
Ebuild name:

gnome-extra/gnome-calculator-47.1-r1

Description

A calculator application for GNOME

Added to portage

2025-05-31

gnome-calculator - 47.3-r1
Ebuild name:

gnome-extra/gnome-calculator-47.3-r1

Description

A calculator application for GNOME

Added to portage

2025-05-31

gnome-chemistry-utils - 0.14.17_p6-r4
Ebuild name:

sci-chemistry/gnome-chemistry-utils-0.14.17_p6-r4

Description

Programs and library containing GTK widgets and C

Added to portage

2025-05-31

gnome-connections - 46.0-r1
Ebuild name:

net-misc/gnome-connections-46.0-r1

Description

A remote desktop client for the GNOME desktop environment

Added to portage

2025-05-31

gnome-connections - 47.0-r1
Ebuild name:

net-misc/gnome-connections-47.0-r1

Description

A remote desktop client for the GNOME desktop environment

Added to portage

2025-05-31

gnome-connections - 47.2.1-r1
Ebuild name:

net-misc/gnome-connections-47.2.1-r1

Description

A remote desktop client for the GNOME desktop environment

Added to portage

2025-05-31

gnome-control-center - 46.4-r2
Ebuild name:

gnome-base/gnome-control-center-46.4-r2

Description

GNOME's main interface to configure various aspects of the

Added to portage

2025-05-31

gnome-control-center - 47.3-r1
Ebuild name:

gnome-base/gnome-control-center-47.3-r1

Description

GNOME's main interface to configure various aspects of the

Added to portage

2025-05-31

gnome-maps - 46.11-r1
Ebuild name:

sci-geosciences/gnome-maps-46.11-r1

Description

A map application for GNOME

Added to portage

2025-05-31

gnome-maps - 47.3-r1
Ebuild name:

sci-geosciences/gnome-maps-47.3-r1

Description

A map application for GNOME

Added to portage

2025-05-31

gnome-online-accounts - 3.48.1-r1
Ebuild name:

net-libs/gnome-online-accounts-3.48.1-r1

Description

GNOME framework for accessing online accounts

Added to portage

2025-05-31

gnome-online-accounts - 3.50.4-r1
Ebuild name:

net-libs/gnome-online-accounts-3.50.4-r1

Description

GNOME framework for accessing online accounts

Added to portage

2025-05-31

gnome-online-accounts - 3.52.3.1-r1
Ebuild name:

net-libs/gnome-online-accounts-3.52.3.1-r1

Description

GNOME framework for accessing online accounts

Added to portage

2025-05-31

gnome-shell - 46.7-r1
Ebuild name:

gnome-base/gnome-shell-46.7-r1

Description

Provides core UI functions for the GNOME desktop

Added to portage

2025-05-31

gnome-shell - 47.3-r2
Ebuild name:

gnome-base/gnome-shell-47.3-r2

Description

Provides core UI functions for the GNOME desktop

Added to portage

2025-05-31

gnome-system-monitor - 45.0.2-r1
Ebuild name:

gnome-extra/gnome-system-monitor-45.0.2-r1

Description

The Gnome System Monitor

Added to portage

2025-05-31

gnome-system-monitor - 46.0-r2
Ebuild name:

gnome-extra/gnome-system-monitor-46.0-r2

Description

The Gnome System Monitor

Added to portage

2025-05-31

gnome-system-monitor - 47.0-r1
Ebuild name:

gnome-extra/gnome-system-monitor-47.0-r1

Description

The Gnome System Monitor

Added to portage

2025-05-31

gnumeric - 1.12.57-r1
Ebuild name:

app-office/gnumeric-1.12.57-r1

Description

The GNOME Spreadsheet

Added to portage

2025-05-31

gnumeric - 1.12.59-r1
Ebuild name:

app-office/gnumeric-1.12.59-r1

Description

The GNOME Spreadsheet

Added to portage

2025-05-31

goffice - 0.10.57-r1
Ebuild name:

x11-libs/goffice-0.10.57-r1

Description

A library of document-centric objects and utilities

Added to portage

2025-05-31

goffice - 0.10.59-r1
Ebuild name:

x11-libs/goffice-0.10.59-r1

Description

A library of document-centric objects and utilities

Added to portage

2025-05-31

gtk-doc - 1.33.2-r2
Ebuild name:

dev-util/gtk-doc-1.33.2-r2

Description

GTK+ Documentation Generator

Added to portage

2025-05-31

gtk-doc - 1.34.0-r1
Ebuild name:

dev-util/gtk-doc-1.34.0-r1

Description

GTK+ Documentation Generator

Added to portage

2025-05-31

gtksourceview - 2.10.5-r5
Ebuild name:

x11-libs/gtksourceview-2.10.5-r5

Description

Text widget implementing syntax highlighting and other features

Added to portage

2025-05-31

gtksourceview - 3.24.11-r2
Ebuild name:

x11-libs/gtksourceview-3.24.11-r2

Description

A text widget implementing syntax highlighting and other features

Added to portage

2025-05-31

gtksourceview - 3.24.11-r4
Ebuild name:

x11-libs/gtksourceview-3.24.11-r4

Description

A text widget implementing syntax highlighting and other features

Added to portage

2025-05-31

gtksourceview - 4.8.4-r2
Ebuild name:

x11-libs/gtksourceview-4.8.4-r2

Description

A text widget implementing syntax highlighting and other features

Added to portage

2025-05-31

gtksourceview - 5.12.1-r2
Ebuild name:

gui-libs/gtksourceview-5.12.1-r2

Description

A text widget implementing syntax highlighting and other features

Added to portage

2025-05-31

gtksourceview - 5.14.2-r1
Ebuild name:

gui-libs/gtksourceview-5.14.2-r1

Description

A text widget implementing syntax highlighting and other features

Added to portage

2025-05-31

gtranslator - 46.1-r1
Ebuild name:

app-text/gtranslator-46.1-r1

Description

GNOME Translation Editor

Added to portage

2025-05-31

gtranslator - 47.1-r1
Ebuild name:

app-text/gtranslator-47.1-r1

Description

GNOME Translation Editor

Added to portage

2025-05-31

gvfs - 1.52.3-r2
Ebuild name:

gnome-base/gvfs-1.52.3-r2

Description

Virtual filesystem implementation for GIO

Added to portage

2025-05-31

gvfs - 1.56.1-r2
Ebuild name:

gnome-base/gvfs-1.56.1-r2

Description

Virtual filesystem implementation for GIO

Added to portage

2025-05-31

hypothesis - 6.131.32
Ebuild name:

dev-python/hypothesis-6.131.32

Description

A library for property based testing

Added to portage

2025-05-31

incus - 6.13
Ebuild name:

app-containers/incus-6.13

Description

Modern, secure and powerful system container and virtual machine manager

Added to portage

2025-05-31

iotop-c - 1.30
Ebuild name:

sys-process/iotop-c-1.30

Description

top utility for IO (C port)

Added to portage

2025-05-31

iproute2 - 6.15.0
Ebuild name:

sys-apps/iproute2-6.15.0

Description

kernel routing and traffic control utilities

Added to portage

2025-05-31

kbd - 2.8.0
Ebuild name:

sys-apps/kbd-2.8.0

Description

Keyboard and console utilities

Added to portage

2025-05-31

libfprint - 1.94.9
Ebuild name:

sys-auth/libfprint-1.94.9

Description

Library to add support for consumer fingerprint readers

Added to portage

2025-05-31

libgda - 5.2.9-r3
Ebuild name:

gnome-extra/libgda-5.2.9-r3

Description

GNOME database access library

Added to portage

2025-05-31

libgedit-gtksourceview - 299.0.4-r1
Ebuild name:

gui-libs/libgedit-gtksourceview-299.0.4-r1

Description

Gedit Technology - Source code editing widget

Added to portage

2025-05-31

libgedit-gtksourceview - 299.3.0-r1
Ebuild name:

gui-libs/libgedit-gtksourceview-299.3.0-r1

Description

Gedit Technology - Source code editing widget

Added to portage

2025-05-31

libgedit-gtksourceview - 299.4.0-r1
Ebuild name:

gui-libs/libgedit-gtksourceview-299.4.0-r1

Description

Gedit Technology - Source code editing widget

Added to portage

2025-05-31

libgepub - 0.7.1-r1
Ebuild name:

app-text/libgepub-0.7.1-r1

Description

GObject based library for handling and rendering epub documents

Added to portage

2025-05-31

libglade - 2.6.4-r5
Ebuild name:

gnome-base/libglade-2.6.4-r5

Description

Library to construct graphical interfaces at runtime

Added to portage

2025-05-31

libgrss - 0.7.0-r2
Ebuild name:

net-libs/libgrss-0.7.0-r2

Description

Library for easy management of RSS/Atom/Pie feeds

Added to portage

2025-05-31

libgsf - 1.14.53-r1
Ebuild name:

gnome-extra/libgsf-1.14.53-r1

Description

The GNOME Structured File Library

Added to portage

2025-05-31

libgweather - 4.4.2-r1
Ebuild name:

dev-libs/libgweather-4.4.2-r1

Description

Location and timezone database and weather-lookup library

Added to portage

2025-05-31

libmateweather - 1.28.0-r1
Ebuild name:

dev-libs/libmateweather-1.28.0-r1

Description

MATE library to access weather information from online services

Added to portage

2025-05-31

librsvg - 2.40.21-r1
Ebuild name:

gnome-base/librsvg-2.40.21-r1

Description

Scalable Vector Graphics (SVG) rendering library

Added to portage

2025-05-31

librsvg - 2.57.3-r3
Ebuild name:

gnome-base/librsvg-2.57.3-r3

Description

Scalable Vector Graphics (SVG) rendering library

Added to portage

2025-05-31

librsvg - 2.58.2-r3
Ebuild name:

gnome-base/librsvg-2.58.2-r3

Description

Scalable Vector Graphics (SVG) rendering library

Added to portage

2025-05-31

librsvg - 2.58.5-r1
Ebuild name:

gnome-base/librsvg-2.58.5-r1

Description

Scalable Vector Graphics (SVG) rendering library

Added to portage

2025-05-31

libvncserver - 0.9.15-r1
Ebuild name:

net-libs/libvncserver-0.9.15-r1

Description

library for creating vnc servers

Added to portage

2025-05-31

libxslt - 1.1.43-r1
Ebuild name:

dev-libs/libxslt-1.1.43-r1

Description

XSLT libraries and tools

Added to portage

2025-05-31

magic-wormhole - 0.19.2
Ebuild name:

dev-python/magic-wormhole-0.19.2

Description

Get Things From One Computer To Another, Safely

Added to portage

2025-05-31

mate-applets - 1.28.0-r1
Ebuild name:

mate-base/mate-applets-1.28.0-r1

Description

Applets for the MATE Desktop and Panel

Added to portage

2025-05-31

mate-calc - 1.28.0-r1
Ebuild name:

mate-extra/mate-calc-1.28.0-r1

Description

Calculator for MATE

Added to portage

2025-05-31

mate-control-center - 1.28.0-r2
Ebuild name:

mate-base/mate-control-center-1.28.0-r2

Description

The MATE Desktop configuration tool

Added to portage

2025-05-31

mate-media - 1.28.1-r2
Ebuild name:

mate-extra/mate-media-1.28.1-r2

Description

Multimedia related programs for the MATE desktop

Added to portage

2025-05-31

mate-notification-daemon - 1.28.1-r2
Ebuild name:

x11-misc/mate-notification-daemon-1.28.1-r2

Description

MATE Notification daemon

Added to portage

2025-05-31

mate-panel - 1.28.1-r1
Ebuild name:

mate-base/mate-panel-1.28.1-r1

Description

The MATE panel

Added to portage

2025-05-31

mate-panel - 1.28.4-r1
Ebuild name:

mate-base/mate-panel-1.28.4-r1

Description

The MATE panel

Added to portage

2025-05-31

mate-system-monitor - 1.28.0-r1
Ebuild name:

mate-extra/mate-system-monitor-1.28.0-r1

Description

The MATE System Monitor

Added to portage

2025-05-31

mate-system-monitor - 1.28.1-r1
Ebuild name:

mate-extra/mate-system-monitor-1.28.1-r1

Description

The MATE System Monitor

Added to portage

2025-05-31

mitmproxy-linux - 0.12.5
Ebuild name:

net-proxy/mitmproxy-linux-0.12.5

Description

mitmproxy's Rust bits

Added to portage

2025-05-31

mitmproxy-rs - 0.12.5
Ebuild name:

net-proxy/mitmproxy-rs-0.12.5

Description

mitmproxy's Rust bits

Added to portage

2025-05-31

nemo - 6.2.8-r1
Ebuild name:

gnome-extra/nemo-6.2.8-r1

Description

A file manager for Cinnamon, forked from Nautilus

Added to portage

2025-05-31

netdiscover - 0.20
Ebuild name:

net-analyzer/netdiscover-0.20

Description

Active/passive address reconnaissance tool

Added to portage

2025-05-31

nprolog - 4.36
Ebuild name:

dev-lang/nprolog-4.36

Description

Interpreter and compiler to be compatible with Arity/Prolog32

Added to portage

2025-05-31

osu-lazer - 2025.424.0
Ebuild name:

games-arcade/osu-lazer-2025.424.0

Description

A free-to-win rhythm game and a final iteration of the osu game c

Added to portage

2025-05-31

pandoc-bin - 3.7.0.2
Ebuild name:

app-text/pandoc-bin-3.7.0.2

Description

Conversion between markup formats (binary package)

Added to portage

2025-05-31

pathable - 0.5.0_alpha2
Ebuild name:

dev-python/pathable-0.5.0_alpha2

Description

Object-oriented paths

Added to portage

2025-05-31

planner - 0.14.91-r1
Ebuild name:

app-office/planner-0.14.91-r1

Description

Project manager for Gnome

Added to portage

2025-05-31

planner - 0.14.92-r1
Ebuild name:

app-office/planner-0.14.92-r1

Description

Project manager for Gnome

Added to portage

2025-05-31

process_executer - 3.2.4
Ebuild name:

dev-ruby/process_executer-3.2.4

Description

An API for executing commands in a subprocess

Added to portage

2025-05-31

pyrate-limiter - 3.7.1
Ebuild name:

dev-python/pyrate-limiter-3.7.1

Description

Python Rate-Limiter using Leaky-Bucket Algorimth Family

Added to portage

2025-05-31

pytest-regressions - 2.8.0
Ebuild name:

dev-python/pytest-regressions-2.8.0

Description

Easy to use fixtures to write regression tests

Added to portage

2025-05-31

rake - 13.3.0
Ebuild name:

dev-ruby/rake-13.3.0

Description

Make-like scripting in Ruby

Added to portage

2025-05-31

sasquatch - 4.5.1.5
Ebuild name:

app-arch/sasquatch-4.5.1.5

Description

An extended version of sasquashfs-tools

Added to portage

2025-05-31

scrcpy - 3.2-r1
Ebuild name:

app-mobilephone/scrcpy-3.2-r1

Description

Display and control your Android device

Added to portage

2025-05-31

sddm - 0.21.0_p20250502-r1
Ebuild name:

x11-misc/sddm-0.21.0_p20250502-r1

Description

Simple Desktop Display Manager

Added to portage

2025-05-31

simsimd - 6.4.5
Ebuild name:

dev-python/simsimd-6.4.5

Description

Fastest SIMD-Accelerated Vector Similarity Functions for x86 and Arm

Added to portage

2025-05-31

spidermonkey - 128.11.0
Ebuild name:

dev-lang/spidermonkey-128.11.0

Description

Mozilla's JavaScript engine written in C and C++

Added to portage

2025-05-31

sqlite - 3.50.0
Ebuild name:

dev-db/sqlite-3.50.0

Description

SQL database engine

Added to portage

2025-05-31

srt - 1.5.4-r1
Ebuild name:

net-libs/srt-1.5.4-r1

Description

Secure Reliable Transport (SRT) library and tools

Added to portage

2025-05-31

tesseract - 5.5.1
Ebuild name:

app-text/tesseract-5.5.1

Description

An OCR Engine, originally developed at HP, now open source

Added to portage

2025-05-31

tracker - 3.6.0-r2
Ebuild name:

app-misc/tracker-3.6.0-r2

Description

A tagging metadata database, search tool and indexer

Added to portage

2025-05-31

tracker-miners - 3.6.2-r2
Ebuild name:

app-misc/tracker-miners-3.6.2-r2

Description

Collection of data extractors for Tracker/Nepomuk

Added to portage

2025-05-31

ubuntu-keyring - 2020.02.11.2
Ebuild name:

app-crypt/ubuntu-keyring-2020.02.11.2

Description

GnuPG archive keys of the Ubuntu archive

Added to portage

2025-05-31

ubuntu-keyring - 2020.06.17.1
Ebuild name:

app-crypt/ubuntu-keyring-2020.06.17.1

Description

GnuPG archive keys of the Ubuntu archive

Added to portage

2025-05-31

ubuntu-keyring - 2021.03.26
Ebuild name:

app-crypt/ubuntu-keyring-2021.03.26

Description

GnuPG archive keys of the Ubuntu archive

Added to portage

2025-05-31

uncrustify - 0.81.0
Ebuild name:

dev-util/uncrustify-0.81.0

Description

C/C++/C/D/Java/Pawn code indenter and beautifier

Added to portage

2025-05-31

uv - 0.7.9
Ebuild name:

dev-python/uv-0.7.9

Description

A Python package installer and resolver, written in Rust

Added to portage

2025-05-31

uv-build - 0.7.9
Ebuild name:

dev-python/uv-build-0.7.9

Description

PEP517 uv build backend

Added to portage

2025-05-31

warlock - 2.1.0
Ebuild name:

dev-python/warlock-2.1.0

Description

Python object model built on JSON schema and JSON patch

Added to portage

2025-05-31

ydotool - 1.0.4-r4
Ebuild name:

x11-misc/ydotool-1.0.4-r4

Description

Generic command-line automation tool (no X

Added to portage

2025-05-31

yelp - 42.2-r2
Ebuild name:

gnome-extra/yelp-42.2-r2

Description

Help browser for GNOME

Added to portage

2025-05-31

yelp-tools - 42.1-r1
Ebuild name:

app-text/yelp-tools-42.1-r1

Description

Collection of tools for building and converting documentation

Added to portage

2025-05-31

rdf newsfeed | rss newsfeed | Atom newsfeed
- Powered by LeopardCMS - Running on Gentoo -
Copyright 2004-2020 Sascha Nitsch Unternehmensberatung GmbH
Valid XHTML1.1 : Valid CSS : buttonmaker
- Level Triple-A Conformance to Web Content Accessibility Guidelines 1.0 -
- Copyright and legal notices -
Time to create this page: 50.4 ms